home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Power 1997 December
/
MACPOWER-1997-12.ISO.7z
/
MACPOWER-1997-12.ISO
/
AMUG
/
PROGRAMMING
/
Raven 1.2 Examples.sit
/
Raven 1.2 Examples
/
Quill
/
Source
/
CustomClassDialog.h
< prev
next >
Wrap
Text File
|
1997-02-22
|
1KB
|
54 lines
/*
* File: CustomClassDialog.h
* Function: A dialog that allows the user to change a pane's class.
* Written by: Jesse Jones
*
* Copyright ゥ 1997 Jesse Jones.
* For conditions of distribution and use, see copyright notice in ZTypes.h
*
* Change History (most recent first):
*
* <-> 2/22/97 JDJ Created
*/
#pragma once
#include <ZDialogBox.h>
// ===================================================================================
// class CCustomClassDialog
// ===================================================================================
class CCustomClassDialog : public TDialogBox {
typedef TDialogBox Inherited;
//-----------------------------------
// Initialization/Destruction
//
public:
virtual ~CCustomClassDialog();
static bool Pose(string* base, string* derived);
protected:
CCustomClassDialog();
//-----------------------------------
// TReanimator Support
//
public:
static MReanimatable* Create(MReanimatable* parent);
//-----------------------------------
// Internal API
//
protected:
void SetData(const string& base, const string& derived);
string GetBase() const;
string GetDerived() const;
};